home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / SecalDemo / Inc / diskfont / glyph.inc < prev    next >
Text File  |  1998-06-24  |  540b  |  33 lines

  1. include "inc/exec/types.inc";
  2. include "inc/exec/libraries.inc";
  3. include "inc/exec/nodes.inc";
  4.  
  5. struct GlyphEngine is
  6.   gle_Library:ulong;
  7.   gle_Name:ulong;
  8. ;
  9.  
  10. struct GlyphMap is
  11.   glm_BMModulo:uword;
  12.   glm_BMRows:uword;
  13.   glm_BlackLeft:uword;
  14.   glm_BlackTop:uword;
  15.   glm_BlackWidth:uword;
  16.   glm_BlackHeight:uword;
  17.   glm_XOrigin:long;
  18.   glm_YOrigin:long;
  19.   glm_X0:word;
  20.   glm_Y0:word;
  21.   glm_X1:word;
  22.   glm_Y1:word;
  23.   glm_Width:long;
  24.   glm_BitMap:ulong;
  25. ;
  26.  
  27. struct GlyphWidthEntry is
  28.   gwe_Node:MinNode;
  29.   gwe_Code:uword;
  30.   gwe_Width:long;
  31. ;
  32.  
  33.